time.Location.lookup (method)
12 uses
time (current package)
format.go#L1396: name, offset, _, _, _ := local.lookup(t.unixSec())
format_rfc3339.go#L146: if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
time.go#L780: _, offset, _, _, _ := l.lookup(sec)
time.go#L801: name, offset, _, _, _ = l.lookup(sec)
time.go#L1404: name, offset, _, _, _ = t.loc.lookup(t.unixSec())
time.go#L1414: _, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
time.go#L1564: } else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
time.go#L1682: _, _, _, _, isDST := t.loc.lookup(t.Unix())
time.go#L1759: _, offset, start, end, _ := loc.lookup(unix)
time.go#L1765: _, offset, _, _, _ = loc.lookup(utc)
zoneinfo.go#L149: func (l *Location) lookup(sec int64) (name string, offset int, start, end int64, isDST bool) {
zoneinfo.go#L621: nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))